Welcome![Sign In][Sign Up]
Location:
Search - sms java

Search list

[SMSsw-sdk-java-2.3.2.tar

Description: SMS SDK classes.This is the archive that must be included in the classpath.-classes.This SMS SDK is the archive that must be included in the classpath.
Platform: | Size: 1675666 | Author: wld | Hits:

[SMS200543037564777

Description: 一个非常功能较全的串口收发短信java源代码-a very functional than all the serial transceiver SMS java source code
Platform: | Size: 20690 | Author: huaihuai | Hits:

[JSP/JavaJAVA-sms

Description: JAVA短信网关平台,由JAVA程序设计语言开发,源码在RAR文件中.-Java SMS Gateway platform from Java programming language development, the source RAR documents.
Platform: | Size: 704753 | Author: 李荣晟 | Hits:

[JSP/JavaSMGPJAVAAPI

Description: 电信小灵通短信Java演示程序(内含有手册、Java源码、演示程序),可作为用java开发电信小林gont短信网关代理程序的有用参考。-telecommunications PHS SMS Java Demonstration Program (containing manuals, Java source code, demo program) can be used as a java development of the telecommunications Kobayashi gont SMS Gateway procedures useful reference.
Platform: | Size: 90477 | Author: 雷大江 | Hits:

[Communication-Mobilesms

Description: Java实现的点对点短消息发送协议(smpp)开发包源码
Platform: | Size: 65249 | Author: xiaohe | Hits:

[Windows Mobilejavasmspush

Description: java push sms,java push sms
Platform: | Size: 11429 | Author: renweicai | Hits:

[SMSsmslib-java-v2.1.5

Description: Sending and receiving of SMS using Java
Platform: | Size: 125968 | Author: David Yeo | Hits:

[SMSsmslib-java-v2.1.4

Description: Sending and receiving of SMS using Java
Platform: | Size: 542813 | Author: David Yeo | Hits:

[Other resourcesms-code

Description: 内存受限系统软件开发一书的代码。(虽不及Gang of Four的模式掷地有声,但也相当不错.使用c and java,姑且放到embeded linux一类中吧)-memory constrained systems software development of a code book. (And not the Gang of Four patterns resounding, but also quite good. C and the use of java, but if embeded Linux into a category it)
Platform: | Size: 248783 | Author: littlebean | Hits:

[WinSock-NDIS短信收发java

Description: 一个整理好的JAVA短信收发程序。带文档以及一些搜集到的资料。方便大家学习-collate a good Java SMS transceiver procedures. With documentation, and some of the data collected. To facilitate learning
Platform: | Size: 1011518 | Author: 无畏 | Hits:

[J2MESMS扩展配置.rar

Description:

1、将jre文件夹复制到你本机所在的JDK下覆盖掉全部jre文件夹

2、将lib文件夹复制到你项目所在的lib,添加对应lib


import org.smslib.IOutboundMessageNotification;
import org.smslib.Library;
import org.smslib.MessageEncodings;
import org.smslib.MessageProtocols;
import org.smslib.OutboundMessage;
import org.smslib.Service;
import org.smslib.modem.SerialModemGateway;
import java.util.List;


public class SendSms {
    public SendSms() {
    }


    public void sendSMS(String[] phoneNumber) throws Exception {
        Service srv;
        OutboundMessage msg;

        OutboundNotification outboundNotification = new OutboundNotification();

        srv = new Service();
        SerialModemGateway gateway = new SerialModemGateway("modem.com1",
                "COM1", 9600, null, null);
        gateway.setInbound(true);
        gateway.setOutbound(true);
        gateway.setSimPin("0000");
        gateway.setOutboundNotification(outboundNotification);
        gateway.setProtocol(MessageProtocols.PDU);
        srv.addGateway(gateway);

        try {
            srv.startService();

            for (int i = 0; i < phoneNumber.length; i++) {
                msg = new OutboundMessage(phoneNumber[i], "您有会议待处理,请登陆查看!");
                msg.setEncoding(MessageEncodings.ENCUCS2);
                srv.sendMessage(msg);

            }

        } finally {
            srv.stopService();
        }
    }

    public class OutboundNotification implements IOutboundMessageNotification {
        public void process(String gatewayId, OutboundMessage msg) {
            System.out.println("Outbound handler called from Gateway: " +
                               gatewayId);
            System.out.println(msg);
        }
    }


    public static void main(String args[]) {
        SendSms app = new SendSms();
        try {
            app.doIt();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}
 


Platform: | Size: 1040178 | Author: idhuanghao | Hits:

[CommunicationSMS短信模块

Description: JAVA编译,支持连接CMPP2\CMPP3\SGIP等协议。
Platform: | Size: 3644728 | Author: zstai@193.com | Hits:

[Com Portjindi java sms for linux V3.1

Description: jindi java sms for linux(JJSL)主要用于在linux操作系统上通过java程序控制Wavecom M1306B GSM/GPRS Modem短信设备的发送和接收。 目前主要支持wavecom全系列产品。开发测试环境为Wavecom M1306B(原装)。 JJSL最大的优点就是跨平台,更换平台只需要更换底层驱动和jindisms-3.1-RC1.jar文件,无需修改您的应用软件。为您节约大量开发及维护成本。 其次,JJSL将所有设备底层操作打包为jindisms-3.1-RC1.jar文件,应用层与底层分离,方便您利用不同的开发平台部署。
Platform: | Size: 102377 | Author: lfqyuan | Hits:

[SMSjni_sms

Description: 用JNI封装的一个联通短信SGIP协议 API的java接口-JNI package with an agreement SGIP Unicom SMS API of java interface
Platform: | Size: 135168 | Author: 站长 | Hits:

[SMSsmproxy

Description: 华为CMPP2短信接口库(JAVA版本),希望能帮到各位,-Huawei CMPP2 SMS Interface Library (Java version), hoping to be able to help you,
Platform: | Size: 892928 | Author: 刘生 | Hits:

[SMS短信宝典

Description: 短信宝典Java源码-SMS source Java
Platform: | Size: 39936 | Author: | Hits:

[SMSsgipclient

Description: 短信网关客户端程序-SMS Gateway Client
Platform: | Size: 111616 | Author: 林槟 | Hits:

[SMS短信平台CMPP30

Description: 短信平台CMPP30 的JAVA程序,(含SQL数据库)-SMS platform CMPP30 JAVA procedures (including SQL database)
Platform: | Size: 1584128 | Author: 梁生 | Hits:

[SMSsmlib

Description: sending and receiving short messages (SMS and EMS) via Java
Platform: | Size: 111616 | Author: | Hits:

[SMShomermx

Description: HomerMX is a message exchange service for wireless message formats such as SMS and MMS. HomerMX is a Web Services-based (SOAP/WSDL) gateway that is implemented in J2EE and runs under JBoss. It currently supports SMPP and Nokia s MMS.
Platform: | Size: 6405120 | Author: 张海洋 | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 26 »

CodeBus www.codebus.net